home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_show / bench2 / array_bench.e next >
Encoding:
Text File  |  1997-04-13  |  285 b   |  21 lines  |  [TEXT/ttxt]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class ARRAY_BENCH
  5.  
  6. inherit BENCH;
  7.  
  8. creation make
  9.  
  10. feature
  11.  
  12.    cltn: ARRAY[INTEGER];
  13.  
  14.    make is
  15.       do
  16.      !!cltn.make(10,9 + count);
  17.      bench;
  18.       end;
  19.  
  20. end
  21.